home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 316 / libsrc / exit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-20  |  233 b   |  16 lines

  1.  
  2. /* don't know why this is supposed to be here.  chance to clean up before
  3.    exitting for real? */
  4.  
  5. #include <stdio.h>
  6.  
  7. exit(value)
  8. int value;
  9. {
  10.   fclose(stdin);
  11.   fclose(stdout);
  12.   fclose(stderr);
  13.  
  14.   _exit(value);
  15. }
  16.